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.
This commit is contained in:
talksik
2025-07-27 14:18:12 -07:00
parent 1e4211052e
commit c93267c9ee
6 changed files with 550 additions and 290 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
CC = gcc
CFLAGS = -Wall -g
TARGET = audio_capture
SRC = audio_capture.c
SRC = audio_capture.c deepgram_client.c utils.c
LIBS = -lavdevice -lavformat -lavcodec -lavutil -lasound -lcurl
$(TARGET): $(SRC)