Code Monkey home page Code Monkey logo

quasar's Introduction

Quasar

GPT3-enabled surrogate functions in modern C++

Installation

  • Dependencies: libcurl, nlohmann_json 3.2.0
  • Install process: cmake .; make; make install

Example usage

#include <quasar.h>
using namespace quasar; 

...

// Load OpenAI API key from file.
std::ifstream fs("<api_key_file>.json");
std::string key;
if(fs.good())
    getline(fs, key);

// Must initialize before using
if(Quasar::init(key)) return 1;

std::string bad = "What day of the wek is it?";
std::string good;

Quasar("Fix the spelling mistake in bad and output it into good.")
    .with_model(Model::GPT_Davinci) // Optional params: gpt temperature, max tokens
    .bind_input<std::string>("bad", &bad) // Input can be any streamable type
    .execute()
    .extract<std::string>("good", &good); // Extraction throws exception on failure

std::cout << good; // "What day of the week is it?"

Quasar::cleanup();

Notes

  • GPT3 is not necessarily deterministic. Visit the OpenAI docs to learn more about temperature and tokens.
  • Quasar inputs and outputs should ideally be wrapped in try/catch blocks.

quasar's People

Contributors

ws-kj avatar

Watchers

James Cloos avatar

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.