Skip to content

Commit

Permalink
downgrade langchain and disable renovate automerge
Browse files Browse the repository at this point in the history
tank u revonate :)
  • Loading branch information
OasisAkari committed Sep 4, 2023
1 parent b9572f2 commit 2d6f82b
Show file tree
Hide file tree
Showing 5 changed files with 255 additions and 267 deletions.
4 changes: 3 additions & 1 deletion modules/ask/tools/random.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import secrets
import uuid

from typing import List

from .utils import AkariTool, parse_input


Expand All @@ -9,7 +11,7 @@ async def random_number(max: int, min: int):
return random


async def random_choice(input: list[str]):
async def random_choice(input: List[str]):
parsed = parse_input(input)
return secrets.choice(parsed)

Expand Down
Loading

0 comments on commit 2d6f82b

Please sign in to comment.