Skip to content

Commit

Permalink
changed timestamp to duration from durationunit
Browse files Browse the repository at this point in the history
  • Loading branch information
jjuliano committed Feb 16, 2025
1 parent 6cc68de commit c4281eb
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion deps/pkl/Exec.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class ResourceExec {
file: String?

/// A timestamp of when the command was executed, represented as an unsigned 64-bit integer.
timestamp: DurationUnit?
timestamp: Duration?

/// The timeout duration (in seconds) for the command execution. Defaults to 60 seconds.
timeoutDuration: Duration? = 60.s
Expand Down
2 changes: 1 addition & 1 deletion deps/pkl/HTTP.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ResourceHTTPClient {
file: String?

/// A timestamp of when the request was made, represented as an unsigned 64-bit integer.
timestamp: DurationUnit?
timestamp: Duration?

/// The timeout duration (in seconds) for the HTTP request. Defaults to 60 seconds.
timeoutDuration: Duration? = 60.s
Expand Down
2 changes: 1 addition & 1 deletion deps/pkl/LLM.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ResourceChat {
file: String?

/// A timestamp of when the response was generated, represented as an unsigned 64-bit integer.
timestamp: DurationUnit?
timestamp: Duration?

/// The timeout duration (in seconds) for the LLM interaction. Defaults to 60 seconds.
timeoutDuration: Duration? = 60.s
Expand Down
2 changes: 1 addition & 1 deletion deps/pkl/Python.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ResourcePython {
file: String?

/// A timestamp indicating when the command was executed, as an unsigned 64-bit integer.
timestamp: DurationUnit?
timestamp: Duration?

/// The maximum duration (in seconds) allowed for the command execution. Defaults to 60 seconds.
timeoutDuration: Duration? = 60.s
Expand Down
2 changes: 1 addition & 1 deletion gen/exec/ResourceExec.pkl.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/http/ResourceHTTPClient.pkl.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/llm/ResourceChat.pkl.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/python/ResourcePython.pkl.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c4281eb

Please sign in to comment.