Spaces:
Runtime error
Runtime error
isort
Browse files- buster/apps/gradio_app.py +2 -2
- buster/completers/base.py +1 -1
- buster/examples/gradio_app.py +1 -1
- buster/formatters/prompts.py +1 -1
buster/apps/gradio_app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
import os
|
2 |
import logging
|
|
|
3 |
|
4 |
import gradio as gr
|
5 |
-
from huggingface_hub import hf_hub_download
|
6 |
import pandas as pd
|
|
|
7 |
|
8 |
from buster.apps.bot_configs import available_configs
|
9 |
from buster.busterbot import Buster, BusterConfig
|
|
|
|
|
1 |
import logging
|
2 |
+
import os
|
3 |
|
4 |
import gradio as gr
|
|
|
5 |
import pandas as pd
|
6 |
+
from huggingface_hub import hf_hub_download
|
7 |
|
8 |
from buster.apps.bot_configs import available_configs
|
9 |
from buster.busterbot import Buster, BusterConfig
|
buster/completers/base.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
-
from dataclasses import dataclass
|
2 |
import logging
|
3 |
import os
|
4 |
from abc import ABC, abstractmethod
|
|
|
5 |
|
6 |
import openai
|
7 |
import promptlayer
|
|
|
|
|
1 |
import logging
|
2 |
import os
|
3 |
from abc import ABC, abstractmethod
|
4 |
+
from dataclasses import dataclass
|
5 |
|
6 |
import openai
|
7 |
import promptlayer
|
buster/examples/gradio_app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
import pandas as pd
|
2 |
import cfg
|
3 |
import gradio as gr
|
|
|
4 |
|
5 |
from buster.busterbot import Buster
|
6 |
from buster.retriever import Retriever
|
|
|
|
|
1 |
import cfg
|
2 |
import gradio as gr
|
3 |
+
import pandas as pd
|
4 |
|
5 |
from buster.busterbot import Buster
|
6 |
from buster.retriever import Retriever
|
buster/formatters/prompts.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
from dataclasses import dataclass
|
2 |
import logging
|
|
|
3 |
|
4 |
import pandas as pd
|
5 |
|
|
|
|
|
1 |
import logging
|
2 |
+
from dataclasses import dataclass
|
3 |
|
4 |
import pandas as pd
|
5 |
|