Skip to content

Commit

Permalink
Update Dockerfile and README.md in voice_rag app
Browse files Browse the repository at this point in the history
  • Loading branch information
arpagon committed Dec 26, 2023
1 parent 88277f1 commit a15ad44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions apps/voice_rag/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ WORKDIR /vocode
#USER vocode
USER root

ENV OPENAI_API_KEY=""
ENV DEEPGRAM_API_KEY=""
ENV AZURE_SPEECH_KEY=""
ENV AZURE_SPEECH_REGION=""
ENV PINECONE_API_KEY=""
ENV PINECONE_ENVIRONMENT=""
ENV PINECONE_INDEX_NAME=""
ENV DOCKER_ENV="docker"

# # Expose the port your FastAPI app will run on
Expand Down
2 changes: 1 addition & 1 deletion apps/voice_rag/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# client_backend
# voice_rag

## Docker

Expand Down
4 changes: 2 additions & 2 deletions vocode/streaming/models/vector_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ class VectorDBConfig(TypedModel, type=VectorDBType.BASE.value):

class PineconeConfig(VectorDBConfig, type=VectorDBType.PINECONE.value):
index: str
api_key: Optional[str] = None
api_environment: Optional[str] = None
api_key: Optional[str]
api_environment: Optional[str]
top_k: int = 3

0 comments on commit a15ad44

Please sign in to comment.