ai conversation (#49)

* capture audio with alsa

* add brainstorm thoughts

* use basecamp project for managing this project

* add libcurl basic example

* write pcm data to file

* transcribe audio file with deepgram

* transcribe raw audio

* hit anthropic API for ai question

* create full flow with stt, anthropic, tts, and playback

This organizes some components like deepgram into own module, and also
allows gets the full flow to work every time we run the program.

* organize audio and intelligence modules

* organize header files into include directory

* docs: add readme

* docs: explain future work

* docs: add disclaimer about hardcoded audio params
This commit was merged in pull request #49.
This commit is contained in:
Arjun Patel
2025-07-27 15:07:30 -07:00
committed by GitHub
parent 57133f3d2c
commit 8870741c3e
15 changed files with 693 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef INTELLIGENCE_H
#define INTELLIGENCE_H
#include <stdio.h>
#include <stdlib.h>
char *ai_ask(char *question);
#endif //INTELLIGENCE_H