Run nateraw/codellama-34b using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"nateraw/codellama-34b:868672ce4d78e0a74c15e678a9ace4cda3a36da20725f83a3b44aaa24076f80b",
input={
"top_k": 50,
"top_p": 0.95,
"message": "def fibonacci(n):\n",
"temperature": 0.8,
"max_new_tokens": 200
}
)
# The nateraw/codellama-34b model can stream output as it's running.# The predict method returns an iterator, and you can iterate over that output.for item in output:
# https://replicate.com/nateraw/codellama-34b/api#output-schemaprint(item, end="")
if n == 0:
return 0
elif n == 1:
return 1
else:
return fibonacci(n - 1) + fibonacci(n - 2)
def main():
num = int(input('Digite a quantidade de termos que deseja: '))
print(fibonacci(num))
main()