All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cohere.api.core.Environment Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
/**
 * This file was auto-generated by Fern from our API Definition.
 */
package com.cohere.api.core;

public final class Environment {
    public static final Environment PRODUCTION = new Environment("https://api.cohere.ai/v1");

    private final String url;

    private Environment(String url) {
        this.url = url;
    }

    public String getUrl() {
        return this.url;
    }

    public static Environment custom(String url) {
        return new Environment(url);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy