diff --git a/ai-conversation/.gitignore b/ai-conversation/.gitignore new file mode 100644 index 0000000..b9e0119 --- /dev/null +++ b/ai-conversation/.gitignore @@ -0,0 +1,2 @@ +main +.cache diff --git a/ai-conversation/Makefile b/ai-conversation/Makefile index 196abb6..669c6bc 100644 --- a/ai-conversation/Makefile +++ b/ai-conversation/Makefile @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -g +CFLAGS = -Wall -g -Iinclude TARGET = main SRC = main.c deepgram_client.c utils.c intelligence.c audio.c LIBS = -lavdevice -lavformat -lavcodec -lavutil -lasound -lcurl diff --git a/ai-conversation/audio.h b/ai-conversation/include/audio.h similarity index 100% rename from ai-conversation/audio.h rename to ai-conversation/include/audio.h diff --git a/ai-conversation/deepgram_client.h b/ai-conversation/include/deepgram_client.h similarity index 100% rename from ai-conversation/deepgram_client.h rename to ai-conversation/include/deepgram_client.h diff --git a/ai-conversation/intelligence.h b/ai-conversation/include/intelligence.h similarity index 100% rename from ai-conversation/intelligence.h rename to ai-conversation/include/intelligence.h diff --git a/ai-conversation/utils.h b/ai-conversation/include/utils.h similarity index 100% rename from ai-conversation/utils.h rename to ai-conversation/include/utils.h diff --git a/ai-conversation/main b/ai-conversation/main index cd90b24..b6701db 100755 Binary files a/ai-conversation/main and b/ai-conversation/main differ diff --git a/ai-conversation/output.pcm b/ai-conversation/output.pcm new file mode 100644 index 0000000..77f6d17 Binary files /dev/null and b/ai-conversation/output.pcm differ