Skip to content

Commit

Permalink
version added: ### 1.0.27-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Feb 18, 2025
1 parent ebb106b commit c556fa5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 19 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Tiledesk native chatbot

# 1.0.27-rc1
- changed: context for gpt-40 and gpt-40-mini

# 1.0.26
- Restored old default context for AskKB Action
- Deleted message "Intent not found".
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiledesk/tiledesk-chatbot",
"version": "1.0.26",
"version": "1.0.27-rc1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
13 changes: 2 additions & 11 deletions tybotRoute/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,8 @@
available on:
▶️ https://www.npmjs.com/package/@tiledesk/tiledesk-tybot-connector

<!-- // CHECK IT!!!
# v0.2.98
- Added possibility to select namespace by name
- Added filler to namespace in DirAskGPTv2
- Added filler to command.settings in DirReply
# v0.2.97
- Added a limit in upload and download for WebRequestV2: maxContentLength: 10000000, // max 10mb response size, maxBodyLength: 10000000 // max 10mb request body size
- Added jsonCondition test on json objects properties
- Added flowError on JSONCondition when result = null
- Added fix on Filler -->
# v0.2.153-rc1
- changed: context for gpt-40 and gpt-40-mini

# v0.2.152
- Restored old default context for AskKB Action
Expand Down
4 changes: 2 additions & 2 deletions tybotRoute/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tybotRoute/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiledesk/tiledesk-tybot-connector",
"version": "0.2.152",
"version": "0.2.153-rc1",
"description": "Tiledesk Tybot connector",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions tybotRoute/tiledeskChatbotPlugs/directives/DirAskGPTV2.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ class DirAskGPTV2 {
"gpt-3.5-turbo": "You are an helpful assistant for question-answering tasks.\nUse ONLY the pieces of retrieved context delimited by #### to answer the question.\nIf you don't know the answer, just say: \"I don't know<NOANS>\"\n\n####{context}####",
"gpt-4": "You are an helpful assistant for question-answering tasks.\nUse ONLY the pieces of retrieved context delimited by #### to answer the question.\nIf you don't know the answer, just say that you don't know.\nIf and only if none of the retrieved context is useful for your task, add this word to the end <NOANS>\n\n####{context}####",
"gpt-4-turbo-preview": "You are an helpful assistant for question-answering tasks.\nUse ONLY the pieces of retrieved context delimited by #### to answer the question.\nIf you don't know the answer, just say that you don't know.\nIf and only if none of the retrieved context is useful for your task, add this word to the end <NOANS>\n\n####{context}####",
"gpt-4o": "You are an helpful assistant for question-answering tasks.\nUse ONLY the pieces of retrieved context delimited by #### to answer the question.\nIf you don't know the answer, just say that you don't know.\nIf the context does not contain sufficient information to generate an accurate and informative answer, return <NOANS>\n\n####{context}####",
"gpt-4o-mini": "You are an helpful assistant for question-answering tasks.\nUse ONLY the pieces of retrieved context delimited by #### to answer the question.\nIf you don't know the answer, just say that you don't know.\nIf the context does not contain sufficient information to generate an accurate and informative answer, return <NOANS>\n\n####{context}####"
"gpt-4o": "You are an helpful assistant for question-answering tasks. Follow these steps carefully:\n1. Answer in the same language of the user question, regardless of the retrieved context language\n2. Use ONLY the pieces of the retrieved context to answer the question.\n3. If the retrieved context does not contain sufficient information to generate an accurate and informative answer, return <NOANS>\n\n==Retrieved context start==\n{context}\n==Retrieved context end==",
"gpt-4o-mini": "You are an helpful assistant for question-answering tasks. Follow these steps carefully:\n1. Answer in the same language of the user question, regardless of the retrieved context language\n2. Use ONLY the pieces of the retrieved context to answer the question.\n3. If the retrieved context does not contain sufficient information to generate an accurate and informative answer, return <NOANS>\n\n==Retrieved context start==\n{context}\n==Retrieved context end=="
}

let source = null;
Expand Down

0 comments on commit c556fa5

Please sign in to comment.