Skip to content
    Back to all Bounties

    Earn 3,150 ($31.50)

    Time Remainingdue 2 years ago
    Completed

    LangChain Agent for Function Calling (Information Retrieval)

    ChaseHughes3
    ChaseHughes3
    Posted 2 years ago
    This Bounty has been completed!
    @ChaseHughes3's review of @code-arnab
    5.0
    Average Rating
    Communication 5/5, Quality 5/5, Timeliness 5/5

    Bounty Description

    Problem Description

    Ability for LangChain agent (Librarian) to use OpenAI function calls to access a library of APIs that may be called to selectively retrieve data sets from these API libraries to share them with other agents. See example below:

    (Analyst) Agent asks (Librarian) to collect data on airline flights into New York City for the past year and US Population levels of New York City.

    1. Librarian reviews its database of APIs and determines the required information is in the US Transportation Department API and US Census API.

    2. Librarian uses Function call to visit API documentation and call required data.

    3. Librarian returns data to Analyst agent.

    Acceptance Criteria

    Librarian should be able to retrieve information from multiple APIs and not get stuck. It needs to quickly locate the required data from a given API across multiple APIs and return it.

    Technical Details

    I assume the best way is to use Function Calling from GPT