good night last1 commit
Browse files- app.py +1 -1
- resource.py +2 -0
app.py
CHANGED
@@ -14,7 +14,7 @@ def main():
|
|
14 |
curr_path = data_cloning()
|
15 |
query = analyse()
|
16 |
llm_chain=langu()
|
17 |
-
response_gpt = llm_chain.run([query])
|
18 |
# Display the response
|
19 |
st.text_area("Bot Response:", value=response_gpt, height=100)
|
20 |
|
|
|
14 |
curr_path = data_cloning()
|
15 |
query = analyse()
|
16 |
llm_chain=langu()
|
17 |
+
response_gpt = llm_chain.run([str(query)])
|
18 |
# Display the response
|
19 |
st.text_area("Bot Response:", value=response_gpt, height=100)
|
20 |
|
resource.py
CHANGED
@@ -21,6 +21,8 @@ score Rank Risk
|
|
21 |
|
22 |
based on the score and rank you have to return only one most complex repo from report
|
23 |
|
|
|
|
|
24 |
Report: {question}
|
25 |
|
26 |
Answer:"""
|
|
|
21 |
|
22 |
based on the score and rank you have to return only one most complex repo from report
|
23 |
|
24 |
+
if the report Rank has similar scores and rank act accordingly
|
25 |
+
|
26 |
Report: {question}
|
27 |
|
28 |
Answer:"""
|