-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from boldare/feat/heroku-deploy-btn
chore: readme update - shields, sections with details
- Loading branch information
Showing
2 changed files
with
74 additions
and
33 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
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,31 @@ | ||
{ | ||
"name": "Openai Assistant by Boldare", | ||
"description": "A NestJS project for OpenAI Assistant powered by Boldare", | ||
"repository": "https://github.com/boldare/openai-assistant", | ||
"logo": "https://assistant.ai.boldare.dev/assets/ai-assistant.jpg", | ||
"keywords": ["nestjs", "openai", "assistant", "boldare", "ai", "chatbot", "assistant-ai"], | ||
"env": { | ||
"OPENAI_API_KEY": { | ||
"description": "API key for OpenAI. You can generate and find it in the OpenAI dashboard.", | ||
"required": true | ||
}, | ||
"ASSISTANT_ID": { | ||
"description": "Assistant ID has to be defined for Heroku deployment. You can create and find it in the OpenAI dashboard.", | ||
"required": true | ||
}, | ||
"APP_URL": { | ||
"description": "URL of your application - required only if you want to embed the chatbot to the different domains", | ||
"required": false | ||
}, | ||
"OPENWEATHER_API_KEY": { | ||
"description": "API key for OpenWeather - required only if you want to use weather tool", | ||
"required": false | ||
} | ||
}, | ||
"scripts": {}, | ||
"formation": { | ||
"web": { | ||
"quantity": 1 | ||
} | ||
} | ||
} |