Skip to content

Commit

Permalink
making directiories and cleaning the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
MEgooneh committed Sep 24, 2023
1 parent da9586f commit f0ffb31
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 410 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__pycache__/
new.md
venv/
406 changes: 0 additions & 406 deletions Samples/1.json

This file was deleted.

Empty file added core/__init__.py
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion game.py → core/game.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import random, logging
from api import send_message
from core.api import send_message
import json, re
from prompts import render_prompts as render

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
langchain[openai]~=0.0
4 changes: 2 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from game import *
from core import game

new = Game()
new = game.Game()
new.set_players(['simple_villager']*3, ['werewolf']*2, ['medic'], ['seer'])
new.run_game()

0 comments on commit f0ffb31

Please sign in to comment.