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

ee.carlrobert.llm.client.codegpt.request.chat.ContextFile Maven / Gradle / Ivy

There is a newer version: 0.8.28
Show newest version
package ee.carlrobert.llm.client.codegpt.request.chat;

public class ContextFile {

  private final String name;
  private final String content;

  public ContextFile(String name, String content) {
    this.name = name;
    this.content = content;
  }

  public String getName() {
    return name;
  }

  public String getContent() {
    return content;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy