Skip to content

Commit

Permalink
final checks
Browse files Browse the repository at this point in the history
  • Loading branch information
UdAyAn123 committed Feb 3, 2024
2 parents 14c8a9f + 5049d82 commit 1310411
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
# dalgo-ai
Standalone service for AI
# FastAPI Machine Learning API

## Overview

This service exposes an API for various machine-learning tasks, designed to be called by the Dalgo backend.

## Installation and Setup

### Prerequisites

- Python 3.6 or higher
- Pip (Python package installer)

### Clone the Repository

```bash
git clone <repository_url>
cd <repository_name>
```
### Create and Activate Virtual Environment
```bash
python -m venv venv
```

#### On Windows:
```bash
.\venv\Scripts\activate
```
#### On Linux/Mac:
```bash
source venv/bin/activate
```
### Install Dependencies
```bash
pip install -r requirements.txt
```
### Run the Application
```bash
python main.py --port 8080
```
> The FastAPI application will be accessible at http://127.0.0.1:8080.

0 comments on commit 1310411

Please sign in to comment.