10 lines
216 B
Python
10 lines
216 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)
|