Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alokverma18/ai-counselor
AI-Counselor
https://github.com/alokverma18/ai-counselor
ai-counselor streamlit streamlit-application
Last synced: about 6 hours ago
JSON representation
AI-Counselor
- Host: GitHub
- URL: https://github.com/alokverma18/ai-counselor
- Owner: alokverma18
- License: gpl-3.0
- Created: 2023-10-25T16:34:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T13:40:28.000Z (2 months ago)
- Last Synced: 2024-12-03T14:41:07.480Z (2 months ago)
- Topics: ai-counselor, streamlit, streamlit-application
- Language: Python
- Homepage: https://studentai.streamlit.app/
- Size: 23.4 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Student Career Counselor Chatbot
This project is a Streamlit-based application that utilizes a generative AI model to simulate a Student Career Counselor chatbot. Users can interact with the chatbot by entering messages, and the bot responds accordingly.
## Setup
1. *Install Dependencies:*
```bash
pip install streamlit
pip install google.generativeai
```2. *Configure API Key:*
Obtain an API key from the Google Generative AI service and set it in the code:
python
palm.configure(api_key='YOUR_API_KEY')
3. *Run the Application:*
```bash
streamlit run AI-Cousellor.py
```
## Usage
1. Open the application in a web browser.
2. Enter your message in the input box.
3. The chatbot will respond with a simulated Student Career Counselor response.
## Project Structure
- AI-Councellor.py: The main script containing the Streamlit application code.
- requirements.txt: A file listing the project dependencies.## Notes
- This project uses the Streamlit library for creating the web interface.
- The generative AI model from the Google Generative AI service is employed for chatbot responses.## References
- [Streamlit Documentation](https://docs.streamlit.io/)
- [Google Generative AI Documentation](https://generativeai.dev/docs/)