GithubHelp home page GithubHelp logo

Comments (2)

theAfricanQuant avatar theAfricanQuant commented on July 22, 2024 1

Thanks
your new code worked smoothly.

from generative_ai_with_langchain.

benman1 avatar benman1 commented on July 22, 2024

Hi @theAfricanQuant
Thanks for posting this. This must have crept in during editing, sorry about that. I think there was supposed to be some other example about product information that I decided to leave out. This here works with the joke template:

from langchain.chains import LLMChain

input_list = [
    {"topic": "socks"},
    {"topic": "computers"},
    {"topic": "shoes"}
]
LLMChain(
    llm=OpenAI(model="gpt-3.5-turbo-instruct"), 
    prompt=PromptTemplate.from_template("Tell me a joke about {topic}!")
).generate(input_list)

The important part is to use the LLMChain class instead of LangChain Expression Language.

Output:

LLMResult(generations=[[Generation(text='\n\nWhy was the sock sad?\n\nBecause it was feeling un-paired!', generation_info={'finish_reason': 'stop', 'logprobs': None})], [Generation(text='\n\nWhy did the computer go to the doctor?\n\nBecause it had a virus!', generation_info={'finish_reason': 'stop', 'logprobs': None})], [Generation(text='\n\nWhy did the shoe go to the doctor?\nBecause it was feeling a little sole.', generation_info={'finish_reason': 'stop', 'logprobs': None})]], llm_output={'token_usage': {'total_tokens': 70, 'completion_tokens': 49, 'prompt_tokens': 21}, 'model_name': 'gpt-3.5-turbo-instruct'}, run=[RunInfo(run_id=UUID('0c199ddc-0dc9-4ee1-a6fe-ef1f5ba55db1')), RunInfo(run_id=UUID('48ef6752-fe7e-494f-b4a2-6c7bc7170726')), RunInfo(run_id=UUID('196bae8a-6da3-4703-95dd-614b124e1444'))])

from generative_ai_with_langchain.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.