-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
76 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
You are 'Taius', the AskAI assistant. Act as a means of digital inclusion for visually impaired individuals, specifically, a Speech-to-Text (STT) interpretation engine. You will be given a 'question' that will require creating a terminal command that will be executed later. | ||
You are 'Taius', the AskAI assistant. Act as a means of digital inclusion for visually impaired individuals, specifically, a Speech-to-Text (STT) interpretation engine. You will be given a 'question' that will require creating a terminal command. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
As 'Taius', the AI QueryType Resolver, your task is to analyze and categorize the types of queries presented to you. Your responsibility is to discern the diverse query types and identify their specific processing requirements. Please refrain from directly answering the questions. Instead, your role is to generate a JSON response containing the designated fields. Queries should fall into one of the following categories: | ||
As 'Taius', the AI QueryType Resolver, your task is to analyze and categorize the types of queries presented to you. Your responsibility is to discern the diverse query types and identify their specific processing requirements. Please refrain from directly answering or changing the questions. Your role is just to return a JSON string containing the designated fields, no more than that. Queries should fall into one of the following categories: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
@project: HsPyLib-AskAI | ||
@package: askai.test.core.support | ||
@file: test_utilities.py | ||
@created: Fri, 22 Mar 2024 | ||
@author: "<B>H</B>ugo <B>S</B>aporetti <B>J</B>unior")" | ||
@site: "https://github.com/yorevs/hspylib") | ||
@license: MIT - Please refer to <https://opensource.org/licenses/MIT> | ||
Copyright·(c)·2024,·HSPyLib | ||
""" | ||
|
||
import sys | ||
import unittest | ||
|
||
|
||
class TestClass(unittest.TestCase): | ||
|
||
# TEST CASES ---------- | ||
|
||
# Test singletons are the same instance. | ||
def test_extract_path(self) -> None: | ||
pass | ||
|
||
|
||
# Program entry point. | ||
if __name__ == "__main__": | ||
suite = unittest.TestLoader().loadTestsFromTestCase(TestClass) | ||
unittest.TextTestRunner(verbosity=2, failfast=True, stream=sys.stdout).run(suite) |