Spaces:
Runtime error
Runtime error
Zwea Htet
commited on
Commit
·
d15a232
1
Parent(s):
93b834c
fixed import error
Browse files- models/bloom.py +2 -1
models/bloom.py
CHANGED
|
@@ -1,12 +1,13 @@
|
|
| 1 |
import os
|
| 2 |
|
| 3 |
-
from customLLM import CustomLLM, prompt_helper
|
| 4 |
from dotenv import load_dotenv
|
| 5 |
from llama_index import (Document, GPTSimpleVectorIndex, LLMPredictor,
|
| 6 |
ServiceContext)
|
| 7 |
|
| 8 |
from data.regItems import data
|
| 9 |
|
|
|
|
|
|
|
| 10 |
load_dotenv()
|
| 11 |
|
| 12 |
#define our llm
|
|
|
|
| 1 |
import os
|
| 2 |
|
|
|
|
| 3 |
from dotenv import load_dotenv
|
| 4 |
from llama_index import (Document, GPTSimpleVectorIndex, LLMPredictor,
|
| 5 |
ServiceContext)
|
| 6 |
|
| 7 |
from data.regItems import data
|
| 8 |
|
| 9 |
+
from .customLLM import CustomLLM, prompt_helper
|
| 10 |
+
|
| 11 |
load_dotenv()
|
| 12 |
|
| 13 |
#define our llm
|