Skip to content

Commit

Permalink
Create artificial_creativity_module.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 16, 2024
1 parent 3c11979 commit 6d7bb4e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/utils/artificial_creativity_module.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import numpy as np

class ArtificialCreativityModule:
def __init__(self, knowledge_graph):
self.knowledge_graph = knowledge_graph

def generate_creative_idea(self, problem):
# TO DO: Implement artificial creativity generation algorithm
pass

def refine_creative_idea(self, idea, feedback):
# TO DO: Implement artificial creativity refinement algorithm
pass

0 comments on commit 6d7bb4e

Please sign in to comment.