Skip to content

Commit

Permalink
docs: docsting for call() in BaseGoogle LLM (#577)
Browse files Browse the repository at this point in the history
* (docs): remove an argument description deprecated for the deprecated
  `value` argument
* (docs): change type for `instruction`
* (docs): make `suffix` description to look more verbose
  • Loading branch information
nautics889 authored Sep 20, 2023
1 parent 2d37c92 commit 7738feb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pandasai/llm/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,9 +434,8 @@ def call(self, instruction: Prompt, suffix: str = "") -> str:
Call the Google LLM.
Args:
instruction (object): Instruction to pass
value (str): Value to pass
suffix (str): Suffix to pass
instruction (Prompt): Instruction to pass.
suffix (str): Suffix to pass. Defaults to an empty string ("").
Returns:
str: LLM response.
Expand Down

0 comments on commit 7738feb

Please sign in to comment.