10 lines
No EOL
221 B
Python
10 lines
No EOL
221 B
Python
from fastapi import FastAPI
|
|
import uvicorn
|
|
|
|
class BaseAgent():
|
|
|
|
def __init__(self):
|
|
self.app = FastAPI()
|
|
|
|
def run(self, host="localhost", port=3000):
|
|
uvicorn.run(self.app, host=host, port=port) |