Skip to content

Commit

Permalink
Create test_artificial_general_intelligence_kernel.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 16, 2024
1 parent cd73862 commit 70a1f49
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/test_artificial_general_intelligence_kernel.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import unittest
from src.core.artificial_general_intelligence_kernel import ArtificialGeneralIntelligenceKernel

class TestArtificialGeneralIntelligenceKernel(unittest.TestCase):
def test_reason_artificially(self):
agik = ArtificialGeneralIntelligenceKernel(KnowledgeGraph(), NeuralNetwork(), QuantumProcessor())
query = "What is the nature of artificial general intelligence?"
result = agik.reason_artificially(query)
self.assertIsInstance(result, str)

if __name__ == '__main__':
unittest.main()

0 comments on commit 70a1f49

Please sign in to comment.