-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handling async execution, adding example env and issue
- Loading branch information
1 parent
0799a40
commit 8cc5886
Showing
8 changed files
with
94 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
QDRANT_COLLECTION_NAME=your_collection_name | ||
QDRANT_URL=http://your_qdrant_url:port/ | ||
QDRANT_API_KEY=your_qdrant_api_key | ||
|
||
# Set this to `azure` or `openai` | ||
OPENAI_API_TYPE=your_api_type | ||
OPENAI_API_VERSION=your_api_version | ||
# You can find this in the Azure portal under your Azure OpenAI resource. | ||
AZURE_OPENAI_API_KEY=your_azure_openai_api_key | ||
AZURE_OPENAI_ENDPOINT=your_azure_openai_endpoint | ||
AZURE_MODEL_VERSION=your_azure_model_version | ||
AZURE_OPENAI_ENGINE=your_azure_openai_engine | ||
|
||
LANGCHAIN_TRACING_V2=your_langchain_tracing_setting | ||
LANGCHAIN_ENDPOINT=your_langchain_endpoint | ||
LANGCHAIN_API_KEY=your_langchain_api_key | ||
LANGCHAIN_PROJECT=your_langchain_project | ||
LANGCHAIN_WANDB_TRACING=your_langchain_wandb_tracing_setting | ||
|
||
SERPAPI_API_KEY=your_serpapi_api_key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"title": "Calculate Mean of Numbers", | ||
"body": "Create a function to calculate the mean of an array of numbers. The function should take an array of numbers as input and return the mean of those numbers.", | ||
"labels": ["enhancement"], | ||
"assignees": ["your-username"], | ||
"milestone": null, | ||
"state": "open", | ||
"number": 1, | ||
"created_at": "2023-04-01T00:00:00Z", | ||
"updated_at": "2023-04-01T00:00:00Z", | ||
"closed_at": null, | ||
"author": "your-username", | ||
"comments": [ | ||
{ | ||
"user": "commenter-username", | ||
"message": "Remember to handle empty arrays by returning 0 or null." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters