Skip to content

Commit

Permalink
Merge pull request #156 from Maplemx/dev
Browse files Browse the repository at this point in the history
bug fix: add compatible package pyreadline3 for readline on Windows s…
  • Loading branch information
Maplemx authored Sep 4, 2024
2 parents c08e2b3 + 23fddbd commit 1e66a6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Agently/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#import nest_asyncio
import readline
try:
import readline
except ImportError:
import pyreadline as readline
from .Request import Request
from .Agent import AgentFactory
from .Facility import FacilityManager
Expand Down
2 changes: 2 additions & 0 deletions Agently/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Shell Interaction Optimization
pyreadline3
# Async Ensurence
# nest_asyncio
# Network
Expand Down

0 comments on commit 1e66a6e

Please sign in to comment.