-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from skyscrapr/f-projects
F projects
- Loading branch information
Showing
7 changed files
with
187 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package openai | ||
|
||
import ( | ||
"fmt" | ||
"net/url" | ||
) | ||
|
||
const ProjectsEndpointPath = "/organization/projects" | ||
|
||
// ProjectsEndpoint - OpenAI Projects Endpoint | ||
// | ||
// List and describe the projects available. | ||
// You can refer to the [Projects]: https://platform.openai.com/docs/api-reference/projects documentation. | ||
type ProjectsEndpoint struct { | ||
*organizationEndpoint | ||
} | ||
|
||
// Projects - Projects Endpoint | ||
func (c *Client) Projects() *ProjectsEndpoint { | ||
return &ProjectsEndpoint{newOrganizationEndpoint(c, ProjectsEndpointPath)} | ||
} | ||
|
||
// Project - OpenAPI Project. | ||
type Project struct { | ||
ID string `json:"id"` | ||
Object string `json:"object"` | ||
Name string `json:"name"` | ||
CreatedAt int64 `json:"created_at"` | ||
ArchivedAt int64 `json:"archived_at"` | ||
Status string `json:"status"` | ||
} | ||
|
||
type Projects struct { | ||
Object string `json:"object"` | ||
Data []Project `json:"data"` | ||
} | ||
|
||
type ProjectRequest struct { | ||
// The name of the assistant. The maximum length is 256 characters. | ||
Name *string `json:"name"` | ||
} | ||
|
||
// Lists the currently available projects, | ||
// and provides basic information about each one. | ||
// | ||
// [OpenAI Documentation]: https://platform.openai.com/docs/api-reference/projects/list | ||
func (e *ProjectsEndpoint) ListProjects() ([]Project, error) { | ||
var projects Projects | ||
err := e.do(e, "GET", "", nil, nil, &projects) | ||
// TODO: This needs to move somewhere central | ||
if err == nil && projects.Object != "list" { | ||
err = fmt.Errorf("expected 'list' object type, got %s", projects.Object) | ||
} | ||
return projects.Data, err | ||
} | ||
|
||
// Create a project. | ||
// [OpenAI Documentation]: https://platform.openai.com/docs/api-reference/projects/create | ||
func (e *ProjectsEndpoint) CreateProject(req *ProjectRequest) (*Project, error) { | ||
var project Project | ||
err := e.do(e, "POST", "", req, nil, &project) | ||
return &project, err | ||
} | ||
|
||
// Retrieves a project instance, | ||
// providing basic information about the project. | ||
// | ||
// [OpenAI Documentation]: https://platform.openai.com/docs/api-reference/projects/retrieve | ||
func (e *ProjectsEndpoint) RetrieveProject(id string) (*Project, error) { | ||
var project Project | ||
err := e.do(e, "GET", id, nil, nil, &project) | ||
return &project, err | ||
} | ||
|
||
// Modifies a project instance, | ||
// | ||
// [OpenAI Documentation]: https://platform.openai.com/docs/api-reference/projects/modify | ||
func (e *ProjectsEndpoint) ModifyProject(id string, req ProjectRequest) (*Project, error) { | ||
var project Project | ||
err := e.do(e, "POST", id, req, nil, &project) | ||
return &project, err | ||
} | ||
|
||
// Archive a project. | ||
// [OpenAI Documentation]: https://platform.openai.com/docs/api-reference/projects/archive | ||
func (e *ProjectsEndpoint) ArchiveProject(id string) (*Project, error) { | ||
var project Project | ||
err := e.do(e, "POST", url.QueryEscape(id)+"/archive", nil, nil, &project) | ||
return &project, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package openai_test | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/skyscrapr/openai-sdk-go/openai" | ||
"github.com/skyscrapr/openai-sdk-go/openai/test" | ||
) | ||
|
||
// TestListProjects Tests the Projects endpoint of the API using the mocked server. | ||
func TestListProjects(t *testing.T) { | ||
ts := openai_test.NewTestServer() | ||
ts.RegisterHandler("/v1/organizations/projects", func(w http.ResponseWriter, _ *http.Request) { | ||
resBytes, _ := json.Marshal(openai.Projects{Object: "list", Data: nil}) | ||
fmt.Fprintln(w, string(resBytes)) | ||
}) | ||
ts.HTTPServer.Start() | ||
defer ts.HTTPServer.Close() | ||
|
||
client := openai_test.NewTestClient(ts) | ||
_, err := client.Projects().ListProjects() | ||
t.Helper() | ||
if err != nil { | ||
t.Error(err, "TestListProjects error") | ||
} | ||
} | ||
|
||
func TestListProjectsInvalidObject(t *testing.T) { | ||
expectedError := "expected 'list' object type, got project" | ||
|
||
ts := openai_test.NewTestServer() | ||
ts.RegisterHandler("/v1/organizations/projects", func(w http.ResponseWriter, _ *http.Request) { | ||
resBytes, _ := json.Marshal(openai.Projects{Object: "project", Data: nil}) | ||
fmt.Fprintln(w, string(resBytes)) | ||
}) | ||
ts.HTTPServer.Start() | ||
defer ts.HTTPServer.Close() | ||
|
||
client := openai_test.NewTestClient(ts) | ||
_, err := client.Projects().ListProjects() | ||
t.Helper() | ||
if err != nil && err.Error() != expectedError { | ||
t.Errorf("Unexpected error: %v , expected: %s", err, expectedError) | ||
t.Fail() | ||
} | ||
} | ||
|
||
func TestRetrieveProject(t *testing.T) { | ||
testProjectID := "testProjectID" | ||
ts := openai_test.NewTestServer() | ||
ts.RegisterHandler("/v1/organizations/projects/testProjectID", func(w http.ResponseWriter, _ *http.Request) { | ||
resBytes, _ := json.Marshal(openai.Project{Object: "project", ID: testProjectID}) | ||
fmt.Fprintln(w, string(resBytes)) | ||
}) | ||
ts.HTTPServer.Start() | ||
defer ts.HTTPServer.Close() | ||
|
||
client := openai_test.NewTestClient(ts) | ||
project, err := client.Projects().RetrieveProject(testProjectID) | ||
t.Helper() | ||
if err != nil { | ||
t.Error(err, "GetProject error") | ||
} | ||
if project.ID != testProjectID { | ||
t.Errorf("ProjectsEndpoint GetProject Project ID mismatch. Got %s. Expected %s", testProjectID, project.ID) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters