mojuss commited on
Commit
0eca70f
·
verified ·
1 Parent(s): db6da24

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -6,7 +6,7 @@ import os
6
  import openai
7
  from gradio.themes.utils import colors, fonts, sizes
8
 
9
- #openai.api_key = os.environ.get('openai_key')
10
 
11
  messages = [
12
  {"role": "system", "content": "follow the 4 instructions below for your outputs:"},
@@ -24,7 +24,7 @@ def construct_index(directory_path):
24
  temperature = 0.1
25
 
26
  prompt_helper = PromptHelper(max_input_size, num_outputs, max_chunk_overlap, chunk_size_limit=chunk_size_limit)
27
- llm_predictor = LLMPredictor(llm=ChatOpenAI(temperature=temperature, model_name="gpt-3.5-turbo-instruct", max_tokens=num_outputs))
28
  documents = SimpleDirectoryReader(directory_path).load_data()
29
  #index = GPTVectorStoreIndex(documents, llm_predictor=llm_predictor, prompt_helper=prompt_helper)
30
  index = GPTVectorStoreIndex.from_documents(documents, urls=[
@@ -52,7 +52,8 @@ def construct_index(directory_path):
52
  'https://livesmarter.pl/najlepsze-lokaty-maj-2023/',
53
  'https://www.money.pl/gospodarka/inflacja-maj-2023-r-finalny-odczyt-gus-6909186710817344a.html',
54
  'https://ksiegowosc.infor.pl/wiadomosci/5754337,oprocentowanie-lokat-bankowych-i-kont-oszczednosciowych-2023-koniec-maja-poczatek-czerwca-tabela.html#:~:text=7%2C05%25%20%2D%20takie%20jest,proc.',
55
- ], llm_predictor=llm_predictor, prompt_helper=prompt_helper)
 
56
  index.storage_context.persist('index.json')
57
 
58
  return index
 
6
  import openai
7
  from gradio.themes.utils import colors, fonts, sizes
8
 
9
+ os.environ['OPENAI_API_KEY'] = api_key
10
 
11
  messages = [
12
  {"role": "system", "content": "follow the 4 instructions below for your outputs:"},
 
24
  temperature = 0.1
25
 
26
  prompt_helper = PromptHelper(max_input_size, num_outputs, max_chunk_overlap, chunk_size_limit=chunk_size_limit)
27
+ # llm_predictor = LLMPredictor(llm=ChatOpenAI(temperature=temperature, model_name="gpt-3.5-turbo-instruct", max_tokens=num_outputs))
28
  documents = SimpleDirectoryReader(directory_path).load_data()
29
  #index = GPTVectorStoreIndex(documents, llm_predictor=llm_predictor, prompt_helper=prompt_helper)
30
  index = GPTVectorStoreIndex.from_documents(documents, urls=[
 
52
  'https://livesmarter.pl/najlepsze-lokaty-maj-2023/',
53
  'https://www.money.pl/gospodarka/inflacja-maj-2023-r-finalny-odczyt-gus-6909186710817344a.html',
54
  'https://ksiegowosc.infor.pl/wiadomosci/5754337,oprocentowanie-lokat-bankowych-i-kont-oszczednosciowych-2023-koniec-maja-poczatek-czerwca-tabela.html#:~:text=7%2C05%25%20%2D%20takie%20jest,proc.',
55
+ # ], llm_predictor=llm_predictor, prompt_helper=prompt_helper)
56
+ ], prompt_helper=prompt_helper)
57
  index.storage_context.persist('index.json')
58
 
59
  return index