Ruff
This commit is contained in:
parent
b1d16a8efd
commit
8b2a143cc8
|
@ -2,4 +2,4 @@
|
||||||
Hellocomputer lets you analyze your data with a conversaation with your computer
|
Hellocomputer lets you analyze your data with a conversaation with your computer
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '0.1'
|
__version__ = "0.1"
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
from fastapi import FastAPI, status
|
|
||||||
from fastapi.staticfiles import StaticFiles
|
|
||||||
from fastapi.responses import PlainTextResponse
|
|
||||||
import hellocomputer
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from pydantic import BaseModel
|
|
||||||
|
from fastapi import FastAPI, status
|
||||||
|
from fastapi.responses import PlainTextResponse
|
||||||
|
from fastapi.staticfiles import StaticFiles
|
||||||
from langchain_community.chat_models import ChatAnyscale
|
from langchain_community.chat_models import ChatAnyscale
|
||||||
from langchain_core.messages import HumanMessage, SystemMessage
|
from langchain_core.messages import HumanMessage, SystemMessage
|
||||||
|
from pydantic import BaseModel
|
||||||
|
|
||||||
|
import hellocomputer
|
||||||
|
|
||||||
from .config import settings
|
from .config import settings
|
||||||
|
|
||||||
static_path = Path(hellocomputer.__file__).parent / "static"
|
static_path = Path(hellocomputer.__file__).parent / "static"
|
||||||
|
|
Loading…
Reference in a new issue