https://github.com/mindsdb/assistant-mind-quickstart
https://github.com/mindsdb/assistant-mind-quickstart
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mindsdb/assistant-mind-quickstart
- Owner: mindsdb
- License: mit
- Created: 2024-06-19T20:04:38.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T21:40:35.000Z (almost 2 years ago)
- Last Synced: 2025-07-18T10:48:40.319Z (11 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 1
- Watchers: 12
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Assistant-Mind Quickstart
Get started with the Minds Endpoint api’s. Minds Endpoint is designed to help AI agents accomplish tasks, accelerating development by connecting any Mind or LLM to your data source with minimal code. Learn more in [documentation](https://docs.mdb.ai/docs/minds)
## Installation:
To run this project, you'll need Python 3 installed on your system.
Clone this repository to your local machine using:
``` git clone git@github.com:mindsdb/assistant-mind-quickstart.git ```
``` cd assistant-mind-quickstart/ ```
Create a virtual environment, execute the following command:
``` python3 -m venv .venv ```
Activate the virtual environment by running:
``` source .venv/bin/activate ```
Install dependencies using pip:
``` pip3 install -r requirements.txt ```
## Configuration:
Go to https://mdb.ai/ register and login for generating a MindsDB API key.
Create an .env file and add your MindsDB API KEY:
``` MINDSDB_API_KEY=your_api_key ```
Add your database credentials to the .env file:
```
DATABASE_USER=database_user
DATABASE_PASSWORD=database_password
DATABASE_HOST=database_host
DATABASE_PORT=database_port
DATABASE_DATABASE=database_name
DATABASE_SCHEMA=database_schema
```
## Running:
To run the project, execute the following command:
``` python3 app.py ```
## Usage:
In your browser go to
``` http://localhost:8000/ ```