ai_chatbot 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ai_chatbot/version.rb +1 -1
- data/lib/ml_model.py +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 726472f08ac5fcbed289fcd127215efb58823399b4c1e960ef4a9ae35a4ce368
|
4
|
+
data.tar.gz: 59cc5bbe59655f7863970fb32ee66279d308208af82b5ca7d3462748146972de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4611e846bcb29c1a0f5466a7b9269640ab8bb74ad8bb221e885f0c5fe07d2ec92e9a98aedec1b855fcc8ff6590a885c8f3522e4d8b5863724e7495ebc2a963fe
|
7
|
+
data.tar.gz: bb5dfc83841117e9f001d7691fa0fc4a1d439bf53cd7dc535b34a2f5a1f3b24c999d5a34d8cc407af7f4a036128fd280cf8998804c346a07364251bf885176ba
|
data/lib/ai_chatbot/version.rb
CHANGED
data/lib/ml_model.py
CHANGED
@@ -37,7 +37,7 @@ def main(action, query=None, new_answer=None):
|
|
37
37
|
elif action == "update_answer":
|
38
38
|
return update_answer(query, new_answer)
|
39
39
|
elif action == "update_question":
|
40
|
-
return
|
40
|
+
return update_question(query, new_answer) # Corrected here, calling the right function
|
41
41
|
elif action == "list_questions":
|
42
42
|
return list_questions()
|
43
43
|
|
@@ -92,21 +92,21 @@ def update_answer(existing_question, new_answer):
|
|
92
92
|
return "Question not found. Please provide a valid question."
|
93
93
|
|
94
94
|
def update_question(existing_question, new_question):
|
95
|
-
global questions, new_question
|
95
|
+
global questions # Only 'questions' is global, not 'new_question'
|
96
96
|
|
97
97
|
if existing_question in questions:
|
98
98
|
# Find the index of the existing question
|
99
99
|
index = questions.index(existing_question)
|
100
|
-
# Update the
|
101
|
-
|
100
|
+
# Update the question
|
101
|
+
questions[index] = new_question
|
102
102
|
# Retrain the model with updated data
|
103
103
|
model.fit(questions, answers)
|
104
104
|
# Save the updated model and data
|
105
105
|
with open("qa_model.pkl", "wb") as f:
|
106
106
|
pickle.dump({"questions": questions, "answers": answers}, f)
|
107
|
-
return f"
|
107
|
+
return f"Question updated from '{existing_question}' to '{new_question}'"
|
108
108
|
else:
|
109
|
-
return "Question not found. Please provide a valid question."
|
109
|
+
return "Question not found. Please provide a valid question."
|
110
110
|
|
111
111
|
def list_questions():
|
112
112
|
global questions
|